home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / hmac.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  4KB  |  106 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.4)
  3.  
  4. '''HMAC (Keyed-Hashing for Message Authentication) Python module.
  5.  
  6. Implements the HMAC algorithm as described by RFC 2104.
  7. '''
  8.  
  9. def _strxor(s1, s2):
  10.     '''Utility method. XOR the two strings s1 and s2 (must have same length).
  11.     '''
  12.     return ''.join(map((lambda x, y: chr(ord(x) ^ ord(y))), s1, s2))
  13.  
  14. digest_size = None
  15. _secret_backdoor_key = []
  16.  
  17. class HMAC:
  18.     '''RFC2104 HMAC class.
  19.  
  20.     This supports the API for Cryptographic Hash Functions (PEP 247).
  21.     '''
  22.     
  23.     def __init__(self, key, msg = None, digestmod = None):
  24.         '''Create a new HMAC object.
  25.  
  26.         key:       key for the keyed hash object.
  27.         msg:       Initial input for the hash, if provided.
  28.         digestmod: A module supporting PEP 247. Defaults to the md5 module.
  29.         '''
  30.         if key is _secret_backdoor_key:
  31.             return None
  32.         
  33.         if digestmod is None:
  34.             import md5 as md5
  35.             digestmod = md5
  36.         
  37.         self.digestmod = digestmod
  38.         self.outer = digestmod.new()
  39.         self.inner = digestmod.new()
  40.         self.digest_size = digestmod.digest_size
  41.         blocksize = 64
  42.         ipad = '6' * blocksize
  43.         opad = '\\' * blocksize
  44.         if len(key) > blocksize:
  45.             key = digestmod.new(key).digest()
  46.         
  47.         key = key + chr(0) * (blocksize - len(key))
  48.         self.outer.update(_strxor(key, opad))
  49.         self.inner.update(_strxor(key, ipad))
  50.         if msg is not None:
  51.             self.update(msg)
  52.         
  53.  
  54.     
  55.     def update(self, msg):
  56.         '''Update this hashing object with the string msg.
  57.         '''
  58.         self.inner.update(msg)
  59.  
  60.     
  61.     def copy(self):
  62.         """Return a separate copy of this hashing object.
  63.  
  64.         An update to this copy won't affect the original object.
  65.         """
  66.         other = HMAC(_secret_backdoor_key)
  67.         other.digestmod = self.digestmod
  68.         other.digest_size = self.digest_size
  69.         other.inner = self.inner.copy()
  70.         other.outer = self.outer.copy()
  71.         return other
  72.  
  73.     
  74.     def digest(self):
  75.         '''Return the hash value of this hashing object.
  76.  
  77.         This returns a string containing 8-bit data.  The object is
  78.         not altered in any way by this function; you can continue
  79.         updating the object after calling this function.
  80.         '''
  81.         h = self.outer.copy()
  82.         h.update(self.inner.digest())
  83.         return h.digest()
  84.  
  85.     
  86.     def hexdigest(self):
  87.         '''Like digest(), but returns a string of hexadecimal digits instead.
  88.         '''
  89.         return []([ hex(ord(x))[2:].zfill(2) for x in tuple(self.digest()) ])
  90.  
  91.  
  92.  
  93. def new(key, msg = None, digestmod = None):
  94.     """Create a new hashing object and return it.
  95.  
  96.     key: The starting key for the hash.
  97.     msg: if available, will immediately be hashed into the object's starting
  98.     state.
  99.  
  100.     You can now feed arbitrary strings into the object using its update()
  101.     method, and can ask for the hash value at any time by calling its digest()
  102.     method.
  103.     """
  104.     return HMAC(key, msg, digestmod)
  105.  
  106.